docs: document IBC rate-limit error on Compute Route#155
Merged
Conversation
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
tansawit
approved these changes
May 27, 2026
Collaborator
tansawit
left a comment
There was a problem hiding this comment.
Reviewed Router API docs update; fixed Prettier and CI is passing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Document that
POST /v2/fungible/routecan now return a400error when the requested transfer exceeds the current IBC rate-limit capacity.Changes
400response with schema and example showing the remaining send/receive capacity message.Context
The Router API now validates IBC transfers between the Initia L1 and external Cosmos chains against on-chain rate-limit quotas. When the amount would exceed the remaining quota, the route request is rejected with a human-readable capacity message.
Note
Low Risk
OpenAPI-only documentation with no runtime or security behavior changes in this PR.
Overview
Updates the Router API OpenAPI spec for
POST /v2/fungible/routeso clients know about the new IBC rate-limit validation between Initia L1 and external Cosmos chains.The Compute Route description now states that oversized transfers can be rejected with HTTP 400, and the error
messageincludes remaining send or receive capacity in human-readable units. A documented400response adds schema (statusCode,message,error) and an example such asIBC rate limit exceeded - Remaining send capacity: 1234.567890.Reviewed by Cursor Bugbot for commit 1b02148. Bugbot is set up for automated code reviews on this repo. Configure here.